home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / URLMon / urlapi.h < prev    next >
Text File  |  1996-12-15  |  646b  |  28 lines

  1. //
  2. //  urlapi.h
  3. //
  4. //  Copyright (C) Microsoft Corporation, 1996
  5. //
  6. //  Header file for the URL API functions
  7. //
  8.  
  9. #include <Threads.h>
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. typedef pascal OSErr (client_NewThread)(ThreadStyle threadStyle, ThreadEntryProcPtr threadEntry, void *threadParam, Size stackSize, ThreadOptions options, void **threadResult, ThreadID *threadMade);
  16.  
  17. OSErr OpenUrlMoniker(client_NewThread* urlNewThread);
  18.  
  19. void CloseUrlMoniker(void);
  20.  
  21. // don't use this function when linking to static lib
  22. STDAPI CreateURLMoniker(LPMONIKER pMkCtx, LPOLESTR szUrl, IURLMoniker ** ppMk);
  23.  
  24. #ifdef __cplusplus
  25. }  /* end extern "C" */
  26. #endif
  27.  
  28.